home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00011_selection scripts.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  7.9 KB  |  250 lines

  1. on AthleteSelect
  2.   global givState
  3.   MessagePut("entering Athlete Select...")
  4.   set the selectType of givState to #athlete
  5.   PlaySoundWait("PHEEU.AIF")
  6.   go("ivSelect")
  7.   MessagePut("in athlete select handler, just went to frame ivSelect")
  8. end
  9.  
  10. on TopicSelect
  11.   global givState
  12.   MessagePut("entering Topic Select...")
  13.   set the selectType of givState to #topic
  14.   PlaySoundWait("PHEEU.AIF")
  15.   go("ivSelect")
  16.   MessagePut("in topic select handler, just went to frame ivSelect")
  17. end
  18.  
  19. on DoAthleteSelect _ath
  20.   global givState, givSELECTBACKSPRITE, givSELECTFORESPRITE, givSelectCleanupFlag
  21.   set givSelectCleanupFlag to 1
  22.   if (_ath < 1) or (_ath >= the number of lines in field "AthleteSelectText") then
  23.     set the selectType of givState to #none
  24.   else
  25.     set lookup to ["QA0041", "QA0151", "QA0311", "QA0921", "QA0971", "QA1491", "QA1781", "QA2021", "QA2231", "QA2261", "QA2351", "QA2361", "QA2371", "QA2871"]
  26.     set _clip to getAt(lookup, _ath)
  27.     MessagePut("doing athlete select, clip found:" && _clip)
  28.     SetAthleteFromClip(givState, _clip)
  29.     QuestionListSelectNone()
  30.   end if
  31.   go("ivMain")
  32.   set the visible of sprite givSELECTFORESPRITE to 0
  33.   set the visible of sprite givSELECTBACKSPRITE to 0
  34.   set the castNum of sprite givSELECTFORESPRITE to the number of cast "nullcast"
  35.   set the castNum of sprite givSELECTBACKSPRITE to the number of cast "nullcast"
  36. end
  37.  
  38. on DoTopicSelect _topic
  39.   global givFrameScript, givEDITTEXTBOXSPRITE, givState, givSELECTBACKSPRITE, givSELECTFORESPRITE, givTopics, givSelectCleanupFlag
  40.   MessagePut("topic selected with topic = " & _topic)
  41.   set givSelectCleanupFlag to 1
  42.   if (_topic < 1) or (_topic >= the number of lines in field "TopicSelectText") then
  43.     set the selectType of givState to #none
  44.   else
  45.     set the topicNum of givState to _topic
  46.     set lis to getAt(givTopics, _topic)
  47.     set the questionList of givState to value(string(lis))
  48.     SetMonitorPtr(givState, 1, 1)
  49.     SetActiveMonitor(1, 1)
  50.     SetAthleteFromMonitor(givState, "000", 1)
  51.     QuestionListSelectNone()
  52.   end if
  53.   go("ivMain")
  54.   set the visible of sprite givSELECTFORESPRITE to 0
  55.   set the visible of sprite givSELECTBACKSPRITE to 0
  56.   set the castNum of sprite givSELECTFORESPRITE to the number of cast "nullcast"
  57.   set the castNum of sprite givSELECTBACKSPRITE to the number of cast "nullcast"
  58. end
  59.  
  60. on LoadFromDisk
  61.   global givLOADSPRITE, givAnimEnable, givMyDialog, givState, givEditListRead, gSISystem
  62.   MessagePut("load from disk...")
  63.   PlaySoundWait("INSERT.AIF")
  64.   updateStage()
  65.   if givAnimEnable then
  66.     PlayAnim(givLOADSPRITE, "LoadAnim", 5, 1)
  67.   end if
  68.   if objectp(givEditListRead) then
  69.     givEditListRead(mdispose)
  70.   end if
  71.   set filenm to EMPTY
  72.   if gSISystem = "MAC" then
  73.     set filenm to givMyDialog(mGetFile, "SIKD")
  74.   else
  75.     set filenm to givMyDialog(mGetFile, EMPTY, "*.SIK", "*.SIK")
  76.   end if
  77.   if filenm = EMPTY then
  78.     MessagePut("file not found")
  79.     exit
  80.   end if
  81.   if gSISystem = "MAC" then
  82.     set givEditListRead to FileIO(mnew, "read", filenm)
  83.   else
  84.     set givEditListRead to FileIO(mnew, "read", filenm)
  85.   end if
  86.   if not objectp(givEditListRead) then
  87.     MessagePut("could not initialize editListRead, load cancelled")
  88.     exit
  89.   end if
  90.   set tmpList to EMPTY
  91.   set tmpList to givEditListRead(mReadLine)
  92.   set tmpList to stripCRLF(tmpList)
  93.   if char 1 of tmpList <> "%" then
  94.     MessagePut("not my list, no % present in char 1")
  95.     exit
  96.   end if
  97.   delete char 1 of tmpList
  98.   set tmpList to value(tmpList)
  99.   if listp(tmpList) then
  100.     MessagePut("list found:" && tmpList)
  101.   else
  102.     MessagePut("no list found, edit list unchanged")
  103.     givEditListRead(mdispose)
  104.     exit
  105.   end if
  106.   set tmp1 to EMPTY
  107.   set tmp1 to givEditListRead(mReadLine)
  108.   MessagePut("read in" && tmp1)
  109.   set tmp to stripCRLF(tmp1)
  110.   if char 1 of tmp1 = "%" then
  111.     MessagePut("found name: " & tmp1)
  112.     delete char 1 of tmp1
  113.     repeat while (the last char in tmp1 = " ") or (the last char in tmp1 = RETURN)
  114.       delete char the number of chars in tmp1 of tmp1
  115.     end repeat
  116.   else
  117.     givEditListRead(mdispose)
  118.     exit
  119.   end if
  120.   set tmp2 to EMPTY
  121.   set tmp2 to givEditListRead(mReadLine)
  122.   MessagePut("read in" && tmp2)
  123.   set tmp to stripCRLF(tmp2)
  124.   if char 1 of tmp2 = "%" then
  125.     MessagePut("found title: " & tmp2)
  126.     delete char 1 of tmp2
  127.     repeat while (the last char in tmp2 = " ") or (the last char in tmp2 = RETURN)
  128.       delete char the number of chars in tmp2 of tmp2
  129.     end repeat
  130.   else
  131.     givEditListRead(mdispose)
  132.     exit
  133.   end if
  134.   set tmp3 to EMPTY
  135.   set tmp3 to givEditListRead(mReadLine)
  136.   MessagePut("read in" && tmp3)
  137.   set tmp to stripCRLF(tmp3)
  138.   if char 1 of tmp3 = "%" then
  139.     MessagePut("found loc: " & tmp3)
  140.     delete char 1 of tmp3
  141.     repeat while (the last char in tmp3 = " ") or (the last char in tmp3 = RETURN)
  142.       delete char the number of chars in tmp3 of tmp3
  143.     end repeat
  144.   else
  145.     givEditListRead(mdispose)
  146.     exit
  147.   end if
  148.   givEditListRead(mdispose)
  149.   if givAnimEnable then
  150.     PlayAnim(givLOADSPRITE, "LoadAnim", 5, -1)
  151.     updateStage()
  152.   end if
  153.   set the editList of givState to value(string(tmpList))
  154.   if count(the editList of givState) > 0 then
  155.     set the editListPtr of givState to 1
  156.   else
  157.     set the editListPtr of givState to 0
  158.   end if
  159.   set the userName of givState to tmp1
  160.   set the userTitle of givState to tmp2
  161.   set the userLoc of givState to tmp3
  162.   if the mode of givState = #play then
  163.     if count(the editList of givState) > 0 then
  164.       SetMonitorListByNumber(3, the editList of givState)
  165.       SetMonitorPtr(givState, 3, 1)
  166.       BuildEditListText()
  167.       SetActiveMonitor(3)
  168.       SetQuestionTextBox()
  169.       DisplayMonitor(3)
  170.     end if
  171.   else
  172.     DisplayEditTextBox()
  173.   end if
  174. end
  175.  
  176. on GetCredits
  177.   PlaySoundWait("CLIK2.AIF")
  178.   MessagePut("entering GetCredits...")
  179.   go("ivCredits")
  180. end
  181.  
  182. on CreditsKeyDown
  183.   global givState, givCreditsCleanupFlag, givWhichText, givMAINMONITORSPRITE
  184.   if (the key = RETURN) or (the key = ENTER) then
  185.     set tmp to EMPTY
  186.     set tmp to char 1 to 24 of the text of field "enter name"
  187.     set tmp to the text of field "enter name"
  188.     if the number of chars in field "enter name" = 0 then
  189.       set the text of field "enter name" to " "
  190.     end if
  191.     repeat while the last char in tmp = " "
  192.       delete char the number of chars in tmp of tmp
  193.     end repeat
  194.     set the userName of givState to tmp
  195.     set tmp to EMPTY
  196.     set tmp to char 1 to 24 of the text of field "enter title"
  197.     set tmp to the text of field "enter title"
  198.     if the number of chars in field "enter title" = 0 then
  199.       set the text of field "enter title" to " "
  200.     end if
  201.     repeat while the last char in tmp = " "
  202.       delete char the number of chars in tmp of tmp
  203.     end repeat
  204.     set the userTitle of givState to tmp
  205.     set tmp to EMPTY
  206.     set tmp to char 1 to 24 of the text of field "enter location"
  207.     set tmp to the text of field "enter location"
  208.     if the number of chars in field "enter location" = 0 then
  209.       set the text of field "enter location" to " "
  210.     end if
  211.     repeat while the last char in tmp = " "
  212.       delete char the number of chars in tmp of tmp
  213.     end repeat
  214.     set the userLoc of givState to tmp
  215.     puppetSprite(24, 0)
  216.     puppetSprite(25, 0)
  217.     puppetSprite(26, 0)
  218.     set givCreditsCleanupFlag to 1
  219.     set the keyDownScript to EMPTY
  220.     set the castNum of sprite givMAINMONITORSPRITE to the number of cast "MainMonitorCast"
  221.     go("ivMain")
  222.     exit
  223.   else
  224.     if the key = TAB then
  225.       if the text of cast the castNum of sprite givWhichText = EMPTY then
  226.         set the text of cast the castNum of sprite givWhichText to " "
  227.       end if
  228.       set the editableText of sprite givWhichText to 0
  229.       updateStage()
  230.       set givWhichText to givWhichText + 1
  231.       if givWhichText = 27 then
  232.         set givWhichText to 24
  233.       end if
  234.       set the editableText of sprite givWhichText to 1
  235.       updateStage()
  236.     else
  237.       pass()
  238.     end if
  239.   end if
  240. end
  241.  
  242. on CreditsMouseDown
  243.   global givCONTROLPANELSPRITE
  244.   set clik to the clickOn
  245.   if clik = (givCONTROLPANELSPRITE + 10) then
  246.     MessagePut("stop button clicked in roll credits")
  247.   end if
  248.   go("ivRollDone")
  249. end
  250.